home *** CD-ROM | disk | FTP | other *** search
- Path: news.uni-jena.de!news
- From: mkt@isun04.inf.uni-jena.de (Tilo Koerbs)
- Newsgroups: comp.lang.c++
- Subject: Re: Help! Can't compile anything on UNIX
- Date: 31 Jan 1996 14:46:53 GMT
- Organization: Lehrstuhl fuer Rechnerarchitektur- und kommunikation, FSU Jena
- Message-ID: <4envct$qlr@fsuj01.rz.uni-jena.de>
- References: <4emncp$e56@nntp.Stanford.EDU>
- Reply-To: mkt@isun04.inf.uni-jena.de
- NNTP-Posting-Host: isun07.inf.uni-jena.de
-
- Short Answer:
- The foo.c++ is not a C++ program for the compiler, so it is passed to the linker.
- The Linker, of course, cannot use source code.
-
- The foo.cc is really compiled by the (I think GNU) compiler.
- The error is something like this:
- You included iostream.h in file foo.cc, line 24.
- iostream.h included streambuf.h (Also an iostream header file).
- streambuf.h tried to include '_G_config.h'. This looks like
- a GNU configuration header file (I am not sure!!!). And this
- file is missing (or at a place where the compiler not serches).
-
- So far, so good. Wait for other answers!
- Bye.
-
-
-